{% extends 'users/base.html' %} {% block title %}Delete Role: {{ object.name }}{% endblock %} {% block card_content %}
You are about to delete the role {{ object.name }}. This action cannot be undone.
{% if object.user_set.exists %}This will affect the following users:
| Name | {{ object.name }} |
|---|---|
| Permissions | {% if object.permissions.all %} {% else %} No permissions {% endif %} |
| Users with this role | {{ object.user_set.count }} user{{ object.user_set.count|pluralize }} |
| Created | {{ object.created_at|date:"F j, Y, P" }} |